I. Timeline to represent big stages

A good example of this, it is the representation of the stages in a research. In this case, it is represented four big stages of my PhD thesis research: Theoretical frame, Fieldwork, Analysis and Writing. Something benefitial of using this package is it allows a simple and comfortably visual with a simple code.

Firts, load the package “vistime”.

#install.packages("vistime")
library("vistime")

Second, construct the data frame.

timeline_data <- data.frame(event = c("Theoretical frame", "Fieldwork", "Analysis", "Writing"), 
                            start = c("2018-09-01", "2019-09-01", "2019-12-01", "2020-01-02"), 
                            end = c("2019-09-01", "2020-01-15", "2020-10-01", "2021-09-01"), 
                            group = "Stages of 
                            the research")

Third, select the better option for your research: static or interactive visualizations.

A static option of the visualization:

gg_vistime(timeline_data) 

An interactive option of the same visualization:

hc_vistime(timeline_data)

There is another interactive option:

vistime(timeline_data)

Arguments of each function